crypto/internal/fips140/hmac.HMAC.inner (field)

15 uses

	crypto/internal/fips140/hmac (current package)
		hmac.go#L35: 	outer, inner hash.Hash
		hmac.go#L54: 	switch h.inner.(type) {
		hmac.go#L61: 	in = h.inner.Sum(in)
		hmac.go#L76: 	return h.inner.Write(p)
		hmac.go#L80: func (h *HMAC) BlockSize() int { return h.inner.BlockSize() }
		hmac.go#L84: 		if err := h.inner.(marshalable).UnmarshalBinary(h.ipad); err != nil {
		hmac.go#L90: 	h.inner.Reset()
		hmac.go#L91: 	h.inner.Write(h.ipad)
		hmac.go#L106: 	marshalableInner, innerOK := h.inner.(marshalable)
		hmac.go#L147: 	ic, ok := h.inner.(hash.Cloner)
		hmac.go#L156: 	r.inner, err = ic.Clone()
		hmac.go#L171: 	hm.inner = h()
		hmac.go#L178: 		if hm.outer == hm.inner {
		hmac.go#L185: 	blocksize := hm.inner.BlockSize()
		hmac.go#L201: 	hm.inner.Write(hm.ipad)